home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 3
/
Gold Medal Software - Volume 3 (Gold Medal) (1994).iso
/
windows
/
editprog
/
cenviw9.arj
/
KEYCODE.CMM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-03-09
|
376 b
|
11 lines
//****************************************************
//*** KeyCode - Print values of characters pressed ***
//*** ver.1 ***
//****************************************************
printf("Press Key to see keyboard value; Press ESCAPE to exit\n");
do {
key = getch();
printf("key=%04X\n",key)
} while( key != '\033' );